home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiniExamples / AppKit / TextORama / TextORama.h < prev    next >
Text File  |  1995-06-12  |  750b  |  32 lines

  1. /* TextORama.h
  2.  *
  3.  *   TextORama is a subclass of Object which acts as the
  4.  * application delegate.
  5.  * 
  6.  *
  7.  * You may freely copy, distribute, and reuse the code in this example.
  8.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  9.  * fitness for any particular use.
  10.  *
  11.  * Written by:  Sharon Zakhour 
  12.  * Created:  Oct/91
  13.  */
  14.  
  15. #import <appkit/appkit.h>
  16.  
  17. @interface TextORama:Object
  18. {
  19.     id dateField;
  20.     id socSecField;
  21.     id phoneField;
  22.     id emacsScrollView;
  23. }
  24.  
  25. char *dateFilter(id textObj, char *inputText, int *inputLength, int position);
  26. char *socSecFilter(id textObj, char *inputText, int *inputLength, int position);
  27. char *phoneFilter(id textObj, char *inputText, int *inputLength, int position);
  28.  
  29. - loadEmacsScrollView;
  30.  
  31. @end
  32.